home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / math / gle-3.000 / gle-3 / gle / rgb.h < prev    next >
C/C++ Source or Header  |  1995-02-07  |  259b  |  19 lines

  1.  
  2.     typedef union {
  3. /*        struct {unsigned char b,g,r,f;} rgb ; */
  4.         int32 l;
  5.             unsigned char b[4];
  6.     } colortyp;
  7. #ifdef BIGINDIAN
  8. #define B_F 0
  9. #define B_R 1
  10. #define B_G 2
  11. #define B_B 3
  12. #else
  13. #define B_F 3
  14. #define B_R 2
  15. #define B_G 1
  16. #define B_B 0
  17. #endif
  18.  
  19.